home *** CD-ROM | disk | FTP | other *** search
/ MacHack 1999 / MacHack 1999.toast / The Hacks / OutOfContextMenus / Source / CNewCardBehavior.h < prev    next >
Encoding:
Text File  |  1999-06-25  |  690 b   |  34 lines  |  [TEXT/CWIE]

  1. // ===========================================================================
  2. //    CNewCardBehavior.h                 ©1999 Eric Traut
  3. // ===========================================================================
  4.  
  5. #pragma once
  6.  
  7. #include "COffscreenBehavior.h"
  8.  
  9.  
  10. class CNewCardBehavior : public COffscreenBehavior
  11. {
  12.     public:
  13.         CNewCardBehavior(CShadowWindow &        inShadowWindow);
  14.  
  15.         virtual Boolean
  16.         RenderToGWorld(    StGWorldLocker &        inBackingLocker,
  17.                         StGWorldLocker &        inRenderingLocker);
  18.  
  19.         virtual void
  20.         DoIdleTask(    Boolean     inGNETime);
  21.  
  22.         virtual Boolean
  23.         SyncWithShadowWindow(void);
  24.         
  25.     private:
  26.         Boolean        mSlideDone;
  27.         Rect        mInvertRect;
  28.         UInt32        mLastBlitTicks;
  29.         SInt32        mHOffset;
  30. };
  31.  
  32.  
  33.  
  34.